print("Hello World")
The 'print' statement makes Python print something.
The quotation marks are there for a reason; they ensure that it prints TEXT.
If the quotation marks are not present, Python thinks it should print a variable, but there are no variables now.
In the next lesson, we'll talk about variables.
Here is a link to the next lesson: variables